<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
      <title>Tagged with processing 3 - Processing 2.x and 3.x Forum</title>
      <link>https://forum.processing.org/two/discussions/tagged/feed.rss?Tag=processing+3</link>
      <pubDate>Sun, 08 Aug 2021 19:36:35 +0000</pubDate>
         <description>Tagged with processing 3 - Processing 2.x and 3.x Forum</description>
   <language>en-CA</language>
   <atom:link href="/two/discussions/taggedprocessing+3/feed.rss" rel="self" type="application/rss+xml" />
   <item>
      <title>Processing3 on Xp is speeding up system clock</title>
      <link>https://forum.processing.org/two/discussion/27679/processing3-on-xp-is-speeding-up-system-clock</link>
      <pubDate>Tue, 03 Apr 2018 12:29:25 +0000</pubDate>
      <dc:creator>hmjswt</dc:creator>
      <guid isPermaLink="false">27679@/two/discussions</guid>
      <description><![CDATA[<p>Hallo,</p>

<p>I am using 3 HP PC's with Window XP Pro en Processing 2 for development.
Last weekend I was trying out Processing 3.
To my surprise when running a Processing 3 program the system clock of the computer was speeding up.
This happened on all 3 machines!
I know java 8 is not completely compatible with XP.
But was is it doing with my system clock and why?
Any ideas?</p>

<p>Thanks,
Henk Siewert</p>
]]></description>
   </item>
   <item>
      <title>Error message: Usage: PApplet</title>
      <link>https://forum.processing.org/two/discussion/27648/error-message-usage-papplet</link>
      <pubDate>Mon, 02 Apr 2018 15:37:47 +0000</pubDate>
      <dc:creator>barny1952</dc:creator>
      <guid isPermaLink="false">27648@/two/discussions</guid>
      <description><![CDATA[<p>I am working only since a short time with Processing. I always get this error message:</p>

<p><code>Usage: PApplet &lt;appletname&gt;</code></p>

<p>For example I am using these 2 Java-files in a project:</p>

<p>Main.java:</p>

<pre><code>`package de.hpi.javaide.firststeps;
import processing.core.PApplet;
public class Main {
    public static void main(String[] args) {
        PApplet.main(new String[]{"--present", "de.hpi.javaide.firststeps.Game"});
    }
}
`
</code></pre>

<p>Game.java:</p>

<p><code>package de.hpi.javaide.firststeps;
    import processing.core.PApplet;
    <a href="/two/profile/SuppressWarnings">@SuppressWarnings</a>("serial")
    public class Game extends PApplet {
        <a href="/two/profile/Override">@Override</a>
        public void setup() {
            noStroke();
            fill(255, 10, 10);
            rectMode(CORNER);
            rect(5, -100, 20, 10);
        }
        <a href="/two/profile/Override">@Override</a>
        public void draw() {
        }
    }</code></p>

<p>These files come from a course of OpenHPI. Last year processing worked without any problem. Now I get the above shown error code when using any java file using process.</p>

<p>I am using eclipse neon, java version "1.8.0_161" and  core.jar (version 3)</p>

<p>Any help appreciated!
Thanks in advance for your help!</p>
]]></description>
   </item>
   <item>
      <title>Make several layers of tabs?</title>
      <link>https://forum.processing.org/two/discussion/23009/make-several-layers-of-tabs</link>
      <pubDate>Fri, 09 Jun 2017 22:59:54 +0000</pubDate>
      <dc:creator>VladShev</dc:creator>
      <guid isPermaLink="false">23009@/two/discussions</guid>
      <description><![CDATA[<p>On some of my bigger projects, I get too many tabs open in processing (3) and it can become a nightmare to choose the right one. Is there a way to make the tabs layered? If there isn't, then why not?</p>
]]></description>
   </item>
   <item>
      <title>Android Processing, Bluetooth and Wi-Fi connectivity</title>
      <link>https://forum.processing.org/two/discussion/21350/android-processing-bluetooth-and-wi-fi-connectivity</link>
      <pubDate>Sun, 12 Mar 2017 14:46:18 +0000</pubDate>
      <dc:creator>myrds</dc:creator>
      <guid isPermaLink="false">21350@/two/discussions</guid>
      <description><![CDATA[<p>Will processing be able to adapt codes for Bluetooth and Wi-Fi Connectivity in creation of GUIs? Which can be used in communication or controlling of arduino projects?</p>
]]></description>
   </item>
   <item>
      <title>Libraries that show in 2.x are missing in 3.x.  How do I migrate Contributed Libraries from 2 to 3?</title>
      <link>https://forum.processing.org/two/discussion/16283/libraries-that-show-in-2-x-are-missing-in-3-x-how-do-i-migrate-contributed-libraries-from-2-to-3</link>
      <pubDate>Wed, 27 Apr 2016 12:46:44 +0000</pubDate>
      <dc:creator>Loir</dc:creator>
      <guid isPermaLink="false">16283@/two/discussions</guid>
      <description><![CDATA[<p>Please help me.  Even new libraries that I install into the correct folder (Documents/Processing/libraries on Mac) do not show up under Contributed Libraries, but I can see them in Processing 2.1.1</p>
]]></description>
   </item>
   <item>
      <title>Possible to convert a SVG or PDF into Gcode with Processing 3 ?</title>
      <link>https://forum.processing.org/two/discussion/14315/possible-to-convert-a-svg-or-pdf-into-gcode-with-processing-3</link>
      <pubDate>Thu, 07 Jan 2016 13:17:25 +0000</pubDate>
      <dc:creator>Cvolod</dc:creator>
      <guid isPermaLink="false">14315@/two/discussions</guid>
      <description><![CDATA[<p>Hello,</p>

<p>For an artistic project i need a processing script which automatically convert a SVG or a PDF into a Gcode to then send it to a lasercutter. It seems no library exist for this purpose. I've found this script on Github: <a rel="nofollow" href="https://github.com/Sephen/svgtogcode">https://github.com/Sephen/svgtogcode</a> but it doesn't seem to work with Processing 3.</p>

<p>Thanks for your Help !</p>

<p>David</p>
]]></description>
   </item>
   <item>
      <title>Strange console messages when running simple Capture example</title>
      <link>https://forum.processing.org/two/discussion/14083/strange-console-messages-when-running-simple-capture-example</link>
      <pubDate>Sun, 20 Dec 2015 12:43:46 +0000</pubDate>
      <dc:creator>SeedyROM</dc:creator>
      <guid isPermaLink="false">14083@/two/discussions</guid>
      <description><![CDATA[<p><strong>(This is my first Processing forum post, I've never had any issues with running Processing until now.)</strong></p>

<p>So I've just updated to Processing 3 on my 10.10.3 OS X (Yosemite) install, and I'm getting these very cryptic console logs from an unknown source. Hell Google doesn't even know what the smallest parts of the message are. This seems to crash the Capture protocol unless you luckily run the script (without stopping it manually around 3 to 5 times), this is currently making my testing waiting around for it to just magically work. It only works (occasionally, it's not guaranteed) once I get 2 console logs from a strange source called CoreMachDebugLog, which seems to be some sort of kernel level debug message that gets sent to the JVM.</p>

<p>This is the most it prints before crashing if it doesn't work:</p>

<blockquote class="Quote">
  <p>Dec 20 07:17:32 computer_name.local CoreMachDebugLog[1040] : <strong>CONFIG_CMIO_CLASSNAME</strong> CMIO_DP_ModuleTermFunc</p>
  
  <p>Dec 20 07:17:33 computer_name.local CoreMachDebugLog[1042] : <strong>CONFIG_CMIO_CLASSNAME</strong> CMIO_DP_ModuleInitFunc (null)</p>
</blockquote>

<p>Can anybody discern what's going on here?</p>

<p>NOTE:
<strong>As I was typing this, I left a nonfunctioning version of my script running by accident, and it filled up my computer's RAM!</strong> <strong>To put this in perspective my computer has 32GB of RAM, what on earth is going on?!?</strong></p>

<p><strong>(Also if I may add the Processing executable I downloaded from the site is still called Processing 2, which seems strange even though the interface has completely changed.)</strong></p>
]]></description>
   </item>
   <item>
      <title>Problem to install OpenCV library for Processing</title>
      <link>https://forum.processing.org/two/discussion/14079/problem-to-install-opencv-library-for-processing</link>
      <pubDate>Sat, 19 Dec 2015 20:16:14 +0000</pubDate>
      <dc:creator>Luidjy_Banana</dc:creator>
      <guid isPermaLink="false">14079@/two/discussions</guid>
      <description><![CDATA[<p>Hello, I try since 2 days to install the library of openCV for Processin to make works this program : <a rel="nofollow" href="http://www.mon-club-elec.fr/pmwiki_mon_club_elec/pmwiki.php?n=MAIN.OutilsProcessingOpenCVSuiviBalle?action=sourceblock&amp;num=1">Monclubelecprogram</a></p>

<p>But when I run it, I have this error :</p>

<p>[opencv fatal error] library not loaded !
THIS VERSION OF OPENCV LIBRARY REQUIRE ADDITIONAL DEPENDENCIES.
READ THE INSTALLATION INSTRUCTIONS AT <a href="http://ubaa.net/shared/processing/opencv/" target="_blank" rel="nofollow">http://ubaa.net/shared/processing/opencv/</a></p>

<p>Verify that the '\path\to\OpenCV\bin' exists in your system PATH and the java.library.path property is correctly.</p>

<p>error message: C:\Users\XXXXXXX\Documents\Processing\libraries\OpenCV\library\OpenCV.dll: Can't find dependent libraries</p>

<p>A library relies on native code that's not available.
Or only works properly when the sketch is run as a 64-bit application.</p>

<p>However, i followed the instruction of <a rel="nofollow" href="http://ubaa.net/shared/processing/opencv/">ubaa.net</a> I don't know what i can do, I tried everything I could find in forums... I'll go crazy. Please help me :)</p>
]]></description>
   </item>
   <item>
      <title>menu bar in P2D?</title>
      <link>https://forum.processing.org/two/discussion/13438/menu-bar-in-p2d</link>
      <pubDate>Sun, 08 Nov 2015 08:45:18 +0000</pubDate>
      <dc:creator>kchoi</dc:creator>
      <guid isPermaLink="false">13438@/two/discussions</guid>
      <description><![CDATA[<p>Greetings, all. What I'd like to do is add a menu bar to my program. I'm aware that for now it's still <a rel="nofollow" href="https://forum.processing.org/two/discussion/12546/#Comment_51148">possible</a> (albeit a little wordy) with the default renderer to access the underlying Frame object for AWT and Swing menu bars, but I'm using shaders for image processing, which means P2D and JOGL. So my question is: is there a JOGL related library that provides menu bar functionality, or will I need to make one myself?</p>

<p>Thanks in advance.</p>
]]></description>
   </item>
   <item>
      <title>Howto get processing 3 to work in eclipse or netBeans?</title>
      <link>https://forum.processing.org/two/discussion/12054/howto-get-processing-3-to-work-in-eclipse-or-netbeans</link>
      <pubDate>Wed, 12 Aug 2015 20:21:46 +0000</pubDate>
      <dc:creator>cems</dc:creator>
      <guid isPermaLink="false">12054@/two/discussions</guid>
      <description><![CDATA[<p>Processing 2 works fine for me in eclipse, though I found I needed to use proclipsing to make it work right.  I tried using processing 3 simply by redirecting the proclipsing project setup to the processing 3 library folder rather then the processing 2 folder.  That did not work. I did put the size() command into a separate settings() method as directed by the processing 3 announcement.  But  The default empty app or a hello world app just gives a runtime error saying it's not an applet.</p>

<p>processing 3 does work for me in the Processing application, so it's not my code, but rather something about the proclipsing project.</p>

<p>So how do I get processing 3 to work in eclipse?  Or NetBeans?</p>

<p>By the way, searching for processing3 in the forum is difficult.  Is there a tag for this?</p>
]]></description>
   </item>
   <item>
      <title>how to fix bad processing 3 installation and run different versions of processing</title>
      <link>https://forum.processing.org/two/discussion/12192/how-to-fix-bad-processing-3-installation-and-run-different-versions-of-processing</link>
      <pubDate>Fri, 21 Aug 2015 10:07:57 +0000</pubDate>
      <dc:creator>rhabdology</dc:creator>
      <guid isPermaLink="false">12192@/two/discussions</guid>
      <description><![CDATA[<p>Hello!</p>

<p>It's my first question, I hope I ask it the right way. I'm confused and worried about the "sketchbook folder. I tried to install processing 3 and missed the opportunity to create a new folder (both versions use the same folder called processing now). Can someone tell me how to structure everything to use both versions (how many folders and where, on a Mac, which names can be used, etc...)?
Thank you for your answers,
Cheers,</p>

<p>Rhabdology</p>

<p>PS: I am using a MBP retina 15' with OS X 10.10.5)</p>

<p>"Since older sketches may not be compatible, we recommend creating a new sketchbook folder, so Processing 2 and 3 can happily coexist. This is a one-time process. Create a new sketchbook folder for use with Processing 3 sketches (recommended!)" I uninstalled Processing 3 and tried to install it another time but the message doesn't appear anymore.</p>
]]></description>
   </item>
   <item>
      <title>Library G4P with Processing</title>
      <link>https://forum.processing.org/two/discussion/12085/library-g4p-with-processing</link>
      <pubDate>Fri, 14 Aug 2015 14:38:13 +0000</pubDate>
      <dc:creator>Strahl255</dc:creator>
      <guid isPermaLink="false">12085@/two/discussions</guid>
      <description><![CDATA[<pre><code>Hello,

I have just installed Processing 3.03b and had some trouble when using G4P library.

Is there any compatibility issue between both (Processing 3.03b and G4P library)?

Thanks,
</code></pre>
]]></description>
   </item>
   <item>
      <title>G4P Tool - setTitle - 3.0a9</title>
      <link>https://forum.processing.org/two/discussion/11163/g4p-tool-settitle-3-0a9</link>
      <pubDate>Fri, 05 Jun 2015 13:02:00 +0000</pubDate>
      <dc:creator>kowalski5233</dc:creator>
      <guid isPermaLink="false">11163@/two/discussions</guid>
      <description><![CDATA[<p>Good afternoon</p>

<p>I have decided to try out 3.0a9 following a system format after using 3.0a5 for quite some time.</p>

<p>I'm experiencing an interesting problem where my sketches crashes in the createGUI() function with a NullPointerException after this code</p>

<p><code>
  if(frame != null)
    frame.setTitle("myApp");
</code></p>

<p>and the console prints out the following</p>

<p><code>
Use surface.setTitle() instead of frame.setTitle in Processing 3
</code></p>

<p>I have also tried creating a new sketch, but it has the same problem.</p>

<p>When I installed the G4P library I'm pretty sure it installed v3.5.2, but the printout in the console printer v3.5.3.  To be sure I downloaded v3.5.3 from Quarks Place and replaced the installation directory (I saw mention of a NullPointerException fix).</p>
]]></description>
   </item>
   </channel>
</rss>